home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 57805 / 57805.xpi / content / overlay.xul < prev    next >
Extensible Markup Language  |  2010-01-25  |  4KB  |  81 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <!--
  4.         #################################################################
  5.         #   Firefox GUI Minify                                          #
  6.         #################################################################
  7.         #   Author:     Domenico Martella                               #
  8.         #   E-mail:     domenico.martella@alcacoop.it                   #
  9.         #   Date:       2010-01-04                                      #
  10.         #################################################################
  11.         #                                                               #
  12.         #       Copyright (C) 2010  - Alca Soc. Coop. (Lecce, IT)       #
  13.         #       http://www.alcacoop.it                                  #
  14.         #                                                               #
  15.         # This program is free software; you can redistribute           #
  16.         # it and/or modify it under the terms of the GNU General        #
  17.         # Public License as published by the Free Software              #
  18.         # Foundation; either version 3 of the License, or (at your      #
  19.         # option) any later version.                                    #
  20.         #                                                               #
  21.         # This program is distributed in the hope that it will be       #
  22.         # useful, but WITHOUT ANY WARRANTY; without even the            #
  23.         # implied warranty of MERCHANTABILITY or FITNESS FOR A          #
  24.         # PARTICULAR PURPOSE.  See the GNU General Public License       #
  25.         # for more details.                                             #
  26.         #                                                               #
  27.         # You should have received a copy of the GNU General            #
  28.         # Public License along with this program; if not, write to      #
  29.         # the Free Software Foundation, Inc., 59 Temple Place -         #
  30.         # Suite 330, Boston, MA  02111-1307, USA.                       #
  31.         #################################################################
  32. -->
  33.  
  34. <?xml-stylesheet type="text/css" href="chrome://gui_minify/content/overlay.css"?>
  35. <!DOCTYPE overlay SYSTEM "chrome://gui_minify/locale/overlay.dtd">
  36.  
  37. <overlay id="hideNavbarOverlay" 
  38.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  39.   xmlns:html="http://www.w3.org/1999/xhtml">
  40.  
  41.   <script type="application/x-javascript" src="chrome://global/content/nsUserSettings.js"/>
  42.   <script type="application/x-javascript" src="chrome://gui_minify/content/hideguibars.js"/>
  43.   <script type="application/x-javascript" src="chrome://gui_minify/content/statusbar-replacer.js"/>
  44.   <script type="application/x-javascript" src="chrome://gui_minify/content/keyutils.js"/>
  45.   <script type="application/x-javascript" src="chrome://gui_minify/content/overlay.js"/>
  46.  
  47.   <menupopup id="menu_ToolsPopup">
  48.     <menu label="Hide GUI Bars">
  49.       <menupopup>
  50.         <menuitem label="&gui_minify.toggle;" oncommand="HGBExtension.toggleBars()"/>
  51.         <menuitem label="&gui_minify.options;" oncommand="window.open('chrome://gui_minify/content/options.xul','','chrome');"/>
  52.       </menupopup>
  53.     </menu>
  54.   </menupopup>
  55.  
  56.   <popupset id="mainPopupSet">
  57.     <tooltip id="hgb-pb" class="tooltip"> 
  58.       <div class="div-notify" style="-moz-border-radius-topleft: 5px; 
  59.       -moz-border-radius-topright: 0px; padding-bottom: 5px; padding-top: 6px;">
  60.         <div class="pb-container" id="border">
  61.           <div id="hgb-progressbar"/>
  62.         </div>
  63.       </div>
  64.     </tooltip>     
  65.     <tooltip id="hgb-lu" class="tooltip">
  66.       <div class="div-notify">
  67.         <label id="hgb-linkurl" class="label"/>
  68.       </div>
  69.     </tooltip>     
  70.   </popupset>
  71.  
  72.   <!-- CTRL+L -->
  73.   <command id="Browser:OpenLocation" oncommand="if (!HGBExtension.last_state) HGBExtension.tryshow(false);openLocation();"/>
  74.  
  75.   <vbox id="browser-bottombox">
  76.     <hbox flex="1" id="hgb-bottom" style="height: 1px;"/>
  77.   </vbox>
  78.  
  79.  
  80. </overlay>
  81.